home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / basic / ace_final.lha / ACE_GPL_Release / include / graphics / coerce.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-29  |  666 b   |  35 lines

  1. #ifndef GRAPHICS_COERCE_H
  2. #define GRAPHICS_COERCE_H 1
  3. /*
  4. ** coerce.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/01/95
  11. **
  12. **
  13. */
  14.  
  15.  
  16. /* These flags are passed (in combination) to CoerceMode() to determine the
  17.  * type of coercion required.
  18.  */
  19.  
  20. /* Ensure that the mode coerced to can display just as many colours as the
  21.  * ViewPort being coerced.
  22.  */
  23. #define PRESERVE_COLORS 1
  24.  
  25. /* Ensure that the mode coerced to is not interlaced. */
  26. #define AVOID_FLICKER 2
  27.  
  28. /* Coercion should ignore monitor compatibility issues. */
  29. #define IGNORE_MCOMPAT 4
  30.  
  31.  
  32. #define BIDTAG_COERCE 1 /* Private */
  33.  
  34. #endif
  35.